home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Windows Version.xpl < prev    next >
Text File  |  2001-04-26  |  1KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="9"
  3. "COUNT"="1"
  4. "UIPATH"="Information\Core"
  5. "NAME"="Windows Version"
  6. "VERSION"="2.004"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="na na"
  9. "DESCRIPTION 1"="This plug-in shows which OS you are running (very useful, isn't it?)"
  10. "AUTHOR"="Xteq Systems"
  11. "CONTACTURL"="http://www.xteq.com"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13.  
  14.  
  15. 'Called when the Plugin is started
  16. Sub Plugin_Initialize
  17.  Call SetUIElement(1,"1) Windows 95 (Win95)")
  18.  Call SetUIElement(2,"2) Windows NT (WinNT)")
  19.  Call SetUIElement(3,"3) Windows 98 (Win98)")
  20.  Call SetUIElement(4,"4) Windows 2000 (Win2K)")
  21.  Call SetUIElement(5,"5) Windows Millennium (WinME)")
  22.  Call SetUIElement(6,"6) Windows XP (WinXP)")
  23.  
  24.  i=GetWinVer
  25.  Call SetUIElementEx(i,True)
  26.  Call Disable()
  27. End Sub
  28.  
  29. 'Called when the Plugin should validate the Data the user has entered
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. 'Called when the Plugin should apply the changes
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35. End Sub
  36.  
  37. 'Called when the Plugin is about to be removed from memory
  38. Sub Plugin_Terminate
  39. End Sub
  40.